'Declaration
Public Function AddArrayOfIntegers( _ ByVal sectionName As String, _ ByVal ParamArray arrayOfIntValues() As Integer _ ) As T
public T AddArrayOfIntegers( string sectionName, params int[] arrayOfIntValues )
public function AddArrayOfIntegers( sectionName: String; params arrayOfIntValues: Integerarray of ): T;
public function AddArrayOfIntegers( sectionName : String, arrayOfIntValues : int[] ) : T;
public: T* AddArrayOfIntegers( string* sectionName, params int[]* arrayOfIntValues )
public: T^ AddArrayOfIntegers( String^ sectionName, ... array<int>^ arrayOfIntValues )
Parameters
- sectionName
- The name of the section containing the array.
- arrayOfIntValues
- The array of integer values to add.
Return Value
The template builder instance.